home *** CD-ROM | disk | FTP | other *** search
/ QuickTime 2.0 Developer Kit / QuickTime 2.0 Developer Kit.iso / mac / MAC / Programming Stuff / Interfaces / CIncludes / iomanip.h < prev    next >
Encoding:
Text File  |  1994-11-28  |  932 b   |  35 lines  |  [TEXT/MPS ]

  1. // IOStreams Package
  2. // Steve Teale April 1992
  3. // Copyright Symantec Corp 1990-1992. All Rights Reserved.
  4.  
  5. #ifndef __IOMANIP_H
  6. #define __IOMANIP_H
  7.  
  8. #include <iomdefs.h>
  9.  
  10. ios &_iomanip_resetiosflags(ios&, long);
  11. inline SMANIP<long> resetiosflags(long f) 
  12.     { return SMANIP<long>(_iomanip_resetiosflags,f); }
  13.  
  14. ios &_iomanip_setfill(ios&, int);
  15. inline SMANIP<int> setfill(int filler)
  16.     { return SMANIP<int>(_iomanip_setfill,filler); }
  17.  
  18. ios &_iomanip_setiosflags(ios&, long);
  19. inline SMANIP<long> setiosflags(long f)
  20.     { return SMANIP<long>(_iomanip_setiosflags,f); }
  21.  
  22. ios &_iomanip_setprecision(ios&, int);
  23. inline SMANIP<int> setprecision(int n)
  24.     { return SMANIP<int>(_iomanip_setprecision,n); }
  25.  
  26. ios &_iomanip_setw(ios&, int);
  27. inline SMANIP<int> setw(int w)
  28.     { return SMANIP<int>(_iomanip_setw,w); }
  29.  
  30. ios &_iomanip_setbase(ios&, int);
  31. inline SMANIP<int> setbase(int n)
  32.     { return SMANIP<int>(_iomanip_setbase,n); }
  33.  
  34. #endif  // __IOMANIP_H
  35.